home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9310.ZIP / DFPP03.ZIP / CLOCK.H < prev    next >
C/C++ Source or Header  |  1992-11-21  |  191b  |  18 lines

  1. // --------- clock.h
  2.  
  3. #ifndef CLOCK_H
  4. #define CLOCK_H
  5.  
  6. #include "timer.h"
  7.  
  8. class Clock    {
  9.     Timer clocktimer;
  10. public:
  11.     Clock();
  12.     void DispatchEvent();
  13. };
  14.  
  15. #endif
  16.  
  17.  
  18.